/* style.css - Modern Dark Mode Theme */

/* Import Google Fonts for a modern look */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Roboto+Condensed:wght@400;700&display=swap');

/* Base styling for the document */
html {
  font-family: 'Roboto', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  line-height: 1.6;
}

body {
  margin: 0;
  padding: 20px;
}

/* Headings styling */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Condensed', sans-serif;
  margin-top: 0;
}

/* Link styling */
a {
  color: #bb86fc;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Container to centralize content */
.container {
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

/* Header and footer styling */
header, footer {
  background-color: #1f1f1f;
  padding: 10px 20px;
  text-align: center;
}

/* Button styling example */
.button {
  background-color: #bb86fc;
  color: #121212;
  border: none;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
}

.button:hover {
  background-color: #9b66d2;
}
